Description


Open 7cad Lisp2HTML.exe. The main window contains a spreadsheet in the middle, and 2 left and right panels. These panel can be show or hide using buttons [<<] and [>>].

On the left panel, you can add AutoLisp source code files. On the right panel, you can see your lisp function while moving from cell to cell on the spreadsheet.

After adding AutoLisp files, you can see functions show up in the spreadsheet. Each function shows up in on row, with their properties:

  • Is it a duplicated function found in more than one place in the source code?
  • Is it a recursive function?
  • A list of all its reference functions: direct or indirect
  • A list of all "caller" functions that call it: direct or indirect
  • List of undeclared variables found within the function

Finally, click "Export to HTML" button and the app will generate an web page display all your source code in well-formatted style, with list of functions and their relationship, all hyperlinked to each other.

A web version of the app is available here: upload your lisp file and you will have the html web page in return.